home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / VD08SMP.ZIP / usr / samples / simple / simple_o.m < prev   
Encoding:
Text File  |  1996-02-13  |  406 b   |  18 lines

  1. #include <pm/pm.h>
  2.  
  3. main ()
  4. {
  5.   StdApp    *application = [[StdApp alloc] init];
  6.   StdWindow *mainWindow = [[MainWindow alloc]
  7.              initWithId: 1000
  8.                andFlags: (FCF_SIZEBORDER | FCF_SHELLPOSITION |
  9.                       FCF_TITLEBAR | FCF_SYSMENU | FCF_MINMAX |
  10.                       FCF_TASKLIST)];
  11.  
  12.   [mainWindow makeKeyAndOrderFront: nil];
  13.   [application run];
  14.  
  15.   [mainWindow free];
  16.   [application free];
  17. }
  18.